home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / GRAPHICS / GIF / GIF.ZIP / gifreg.pas < prev   
Pascal/Delphi Source File  |  1996-04-13  |  277b  |  18 lines

  1. unit GifReg;
  2.  
  3. interface
  4.  
  5. uses DsgnIntf, Classes, GifImg, GifEdit;
  6.  
  7. procedure Register;
  8.  
  9. implementation
  10.  
  11. procedure Register;
  12. begin
  13.   RegisterComponents('Custom', [TGifImage]);
  14.   RegisterPropertyEditor(TypeInfo(TGif), TGifImage, 'Gif', TGifProperty);
  15. end;
  16.  
  17. end.
  18.